home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CU Amiga Super CD-ROM 21
/
CU Amiga Magazine's Super CD-ROM 21 (1998)(EMAP Images)(GB)[!][issue 1998-04].iso
/
CUCD
/
CDROM
/
RexxCD
/
rexx
/
browsecd.rexx
next >
Wrap
OS/2 REXX Batch file
|
1996-06-24
|
530b
|
34 lines
/*
Name : browsecd.rexx
Created : 24/06/96
Last change : 24/06/96
Programmer : Urban Lindeskog
Organization : ProNotion SWDG
Plays the first 15 seconds of all tracks on a CD.
*/
OPTIONS RESULTS
ADDRESS REXXCD
if ~show('l','rexxsupport.library') then do
addlib('rexxsupport.library',0,-30,0)
end
GETATTR TRACK STEM TRACK
do i=1 to TRACK.COUNT
'GETATTR TRACK NAME 'i' STEM TRACK'
say TRACK.ARTIST' : 'TRACK.TITLE
PLAY i
do d=0 to 15
call Delay(50)
say RIGHT('',d, '=')RIGHT('', 15, '08'X)
end
end
STOP